home *** CD-ROM | disk | FTP | other *** search
/ The Trig Explorer / The Trig Explorer.iso / mac / Explorer / START.dxr / 00088.ls < prev    next >
Encoding:
Text File  |  1998-07-22  |  446 b   |  20 lines

  1. on mouseUp
  2.   global CalcOn
  3.   if CalcOn = 0 then
  4.     set CalcRect to rect(the stageLeft + 5, the stageTop + 25, the stageLeft + 272 + 5, the stageTop + 400 + 5)
  5.     set Calc to window "Calculator"
  6.     set the rect of Calc to CalcRect
  7.     set the fileName of Calc to "CALC"
  8.     set the windowType of Calc to 5
  9.     set the titleVisible of Calc to 1
  10.     open(Calc)
  11.     set CalcOn to 1
  12.   else
  13.     closeCalc()
  14.   end if
  15. end
  16.  
  17. on mouseDown
  18.   button()
  19. end
  20.